home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _B4C5C7058F88463DBD0DD0CE4D8C06C3 < prev    next >
Encoding:
Text File  |  2006-08-04  |  814 b   |  28 lines

  1.  
  2. from PSPApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': u'Corel Corporation',
  7.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  8.         'Description': 'Factory default preset for AutoSmallScratchRemoval effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_AutoSmallScratchRemoval():
  14.     return {
  15.         'RemoveDarkScratches': 1,
  16.         'Strength': 1,
  17.         'LowerContrastLimit': 0,
  18.         'GeneralSettings': {
  19.             'AutoActionMode': 0,
  20.             'ExecutionMode': 0
  21.             },
  22.         'UpperContrastLimit': 50,
  23.         'RemoveLightScratches': 0
  24.         }
  25.  
  26. def Do(Environment):
  27.     App.Do( Environment, 'AutoSmallScratchRemoval', Preset_AutoSmallScratchRemoval())
  28.